home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / Python1.4_Source / Objects / protos / fileobject_protos.h < prev    next >
Text File  |  1998-06-24  |  993b  |  20 lines

  1.  
  2. /* fileobject.c */
  3. static object *err_closed ( void );
  4. static void file_dealloc ( fileobject *f );
  5. static object *file_repr ( fileobject *f );
  6. static object *file_close ( fileobject *f , object *args );
  7. static object *file_seek ( fileobject *f , object *args );
  8. static object *file_tell ( fileobject *f , object *args );
  9. static object *file_fileno ( fileobject *f , object *args );
  10. static object *file_flush ( fileobject *f , object *args );
  11. static object *file_isatty ( fileobject *f , object *args );
  12. static object *file_read ( fileobject *f , object *args );
  13. static object *getline ( fileobject *f , int n );
  14. static object *file_readline ( fileobject *f , object *args );
  15. static object *file_readlines ( fileobject *f , object *args );
  16. static object *file_write ( fileobject *f , object *args );
  17. static object *file_writelines ( fileobject *f , object *args );
  18. static object *file_getattr ( fileobject *f , char *name );
  19. static int file_setattr ( fileobject *f , char *name , object *v );
  20.